Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Angular 8 Interview Questions and Answers

Question: Explain Angular modules.
Answer: Angular modules are containers for a group of related components, directives, pipes, and services. They help in organizing and consolidating the functionality of the application.

Example:

@NgModule({
  declarations: [AppComponent],
  imports: [CommonModule],
  providers: [DataService],
  bootstrap: [AppComponent]
})
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook